Completed
Branch master (e7446f)
by Vitaly
01:40 queued 27s
created

error.js ➔ UnityCacheError   A

Complexity

Conditions 1
Paths 2

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 2
nop 1
dl 0
loc 3
rs 10
1
function UnityCacheError(message) {
2
    this.message = message || '';
3
}
4
5
Object.setPrototypeOf(UnityCacheError.prototype, Error.prototype);
6
UnityCacheError.prototype.name = 'UnityCacheError';
7
8
export default UnityCacheError;
9